home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / ListProjection.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-30  |  830 b   |  21 lines

  1. package symantec.itools.db.pro;
  2.  
  3. import symjava.sql.SQLException;
  4.  
  5. class ListProjection extends Projection {
  6.    ListBinder _listBind;
  7.  
  8.    public ListProjection(ListBinder lb) {
  9.       this._listBind = lb;
  10.    }
  11.  
  12.    public void notifyDataChange(ProjBinder data) {
  13.       super.notifyDataChange(data);
  14.  
  15.       try {
  16.          this._listBind.dataChanged();
  17.       } catch (SQLException var2) {
  18.       }
  19.    }
  20. }
  21.